home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 1999 November / maximum-cd-1999-11.iso / Utilities / Automation / WinWizard Pro / Sample - Conditional IF Statement.wz_ / Sample - Conditional IF Statement.wz
Encoding:
Text File  |  1998-11-13  |  409 b   |  15 lines

  1. {TITLE} WinWizard Pro - Conditional Date/Time Test
  2. {DISPLAY} Today is {DATE} at {TIME}
  3. {DISPLAYADD} 
  4. {IF} {TIME} > 12:00:00 {THEN} TestTimeGreater
  5. {IF} {TIME} < 12:00:00 {THEN} TestTimeLess
  6. {FLOAT} Off
  7. {END} 
  8. {SUB} TestTimeLess
  9. {DISPLAYADD} The Current Time is Earlier than 12:00 noon...
  10. {RETURN} 
  11. {SUB} TestTimeGreater
  12. {DISPLAYADD} The Current Time is Later than 12:00 noon...
  13. {RETURN} 
  14. {END} 
  15.